-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Allow image resolutions multiple of 8 instead of 64 in SVD pipeline #6646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@DN6 @patil-suraj can you check here? |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
@DN6 could you give this a look? |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
HI @mlfarinha sorry I missed this. PR looks good to me. Could we resolve the conflicts and we can merge. |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
gentle pin @mlfarinha |
This issue has been automatically marked as stale because it has not had recent activity. If you think this still needs to be addressed please comment on this thread. Please note that issues that do not follow the contributing guidelines are likely to be ignored. |
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
…6646) allow resolutions not multiple of 64 in SVD Co-authored-by: Miguel Farinha <mignha@CSL15958.local> Co-authored-by: hlky <hlky@hlky.ac>
Hello! This is my first time making a PR to diffusers so I apologise if I have missed something!
This PR implements the same behaviour from
unet_2d_condition.py
andunet_3d_condition.py
to allow generating images with height/width that are not multiples of 64 while still being multiples of 8 inunet_spatio_temporal_condition.py
. To achieve this I changed the forward method of the UNetSpatioTemporalConditionModel upblocksUpBlockSpatioTemporal
andCrossAttnUpBlockSpatioTemporal
inunet_3d_blocks.py
. This PR is related to the closed issue #255Code to reproduce the error:
Error:
RuntimeError: Sizes of tensors must match except in dimension 1. Expected size 16 but got size 15 for tensor number 1 in the list.
@patrickvonplaten and @sayakpaul